home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 128 42 / q42.d81 / t.nfl top ten < prev    next >
Text File  |  2022-08-28  |  7KB  |  164 lines

  1.  
  2.  
  3.                           N F L    T O P    T E N
  4.  
  5.                     Program and Text by David B. Presley
  6.  
  7.  
  8.  Introduction
  9.  ------------
  10.  
  11.     College football has its polls which decide the College National
  12. Championship each year. The team voted number one in the nation at the end
  13. of the season is crowned the National Champion. USA Today has its poll of
  14. the top 25 college teams in the nation. The Sporting News likewise has its
  15. power poll, not only for college teams but for the NFL as well. But
  16. sometimes we wonder what these polls are based on. Are they based on
  17. something other than win-lose records and TV exposure? Well, now Commodore
  18. 128 users can do their own poll of NFL teams.
  19.  
  20.     NFL TOP TEN keeps records on all 31 teams and computes the numbers to
  21. rank them from 1 through 31. The formula for determining the ranking of
  22. each team is in line 5620. The formula is:
  23.  
  24.  Rating = ((points for - points against)/number of games) + wins
  25.  
  26.     You can alter this formula to suit your own preferences. For example,
  27. if you feel more weight should be given to the number of games won then
  28. change the formula to reflect that preference.
  29.  
  30.  1.0 Main Menu
  31.  
  32.     When the program boots up you will see on your screen an alphabetical
  33. listing of all 31 NFL teams. Across the bottom of the screen is a menu of
  34. six items.
  35.  
  36.  1.1 New Season
  37.  
  38.     Press "S" to initialize a new season. You will be prompted for the
  39. season year. Type in all four digits of the year, such as 2000 or whatever.
  40. Press RETURN to go back to the Main Menu.
  41.  
  42.  1.2 AFC
  43.  
  44.     To view and enter stats for the American Conference press "A".
  45.  
  46.  1.3 NFC
  47.  
  48.     To view and enter stats for the National Conference press "N".
  49.  
  50.  1.4 Print
  51.  
  52.     This option will print the current screen with the listing of all teams
  53. either in their alphabetical order or sorted according to their rating,
  54. depending on which is on the current screen.
  55.  
  56.  1.5 Disk
  57.  
  58.     This option will allow you to save and load the files representing
  59. various football seasons you have created. You can also change drive
  60. numbers and view directories. When saving the current season, which is
  61. already on the disk, you will be asked if you wish to replace the old file.
  62. Answer with an "N" to abort or "Y" to continue. Season files are saved as a
  63. year with an "nfl." prefix ("nfl.2000", for example).
  64.  
  65.  NOTE: A file called "nfl.1999" is on the LOADSTAR 128 #42 disk. It's the
  66. final standings of the NFL for 1999 and will show you what your file will
  67. look like if you follow the upcoming 2000 season closely. Remember, to load
  68. it, just enter "1999", not "nfl.1999".
  69.  
  70.     If a file with the same file name as the one currently in memory is
  71. already on the disk, then it will be changed to the same file name with
  72. ".a" added ("nfl.2000.a"). If there is already a file with the .a then that
  73. file will be deleted, the file without the .a will have it added and the
  74. current file will be saved as is. (For example, "nfl.2000.a" is deleted,
  75. "nfl.2000" becomes "nfl.2000.a", and the current file is saved as
  76. "nfl.2000".) In this way there are two files for each season, an old file
  77. and the most recent update.
  78.  
  79.     Press "M" to return to the Main Menu. If you have loaded a file you
  80. will be asked if you want to calculate the team rankings. Press "Y" to
  81. calculate or "N" to return to the original screen of an alphabetical
  82. listing.
  83.  
  84.  1.6 Quit
  85.  
  86.     Use this option to quit the program and return to LOADSTAR 128 if
  87. there's a LS 128 disk in the current drive. If not, you'll return to
  88. BASIC.
  89.  
  90.  2.0 AFC and NFC Menus
  91.  
  92.     The screens for both conferences are the same, except for the Central
  93. Division of the American Conference having six teams instead of five. Each
  94. division is given with their teams listed according to their winning
  95. percentage. If no data has been entered then the the teams will be listed
  96. alphabetically. There are five options across the bottom of the screen.
  97.  
  98.  2.1 Main Menu
  99.  
  100.     This option will take you back to the Main Menu. You will be asked if
  101. you want to calculate the team rankings. Press "Y" to calculate or "N" to
  102. return to the original screen or an alphabetical listing.
  103.  
  104.  2.2 Division
  105.  
  106.     Use this option to enter stats on a week by week basis. The first
  107. prompt will ask which division you want to enter stats on. Each team, in
  108. alphabetical order, will be listed for you to enter its stats. The next
  109. prompt asks whether or not it was a bye-week for that team. Answer with a
  110. "Y" to go on to the next team or "N" to enter stats for that team. Usually
  111. four of the five teams in a given division will all have bye-weeks at the
  112. same time and the fifth team will have a bye-week by itself.
  113.  
  114.     You will then be asked for the score of this weeks game and a few "yes"
  115. or "no" type questions about the game, such as home/away game,
  116. division/non-division game, and conference/non-conference game. Enter the
  117. information as it is asked for each team. When you have entered the stats
  118. for all five teams you will go back to the previous menu and the standings
  119. for that division will be calculated. Repeat the same procedure for all
  120. three divisions.
  121.  
  122.  2.3 Change
  123.  
  124.     This option will allow you to correct any stats entered incorrectly or,
  125. if you've missed a week or two, you can use this to enter all the data up
  126. to that point in the season. You can compare your stats with the standings
  127. chart in the newspaper. If you have made an error or if you have fallen
  128. behind a couple of weeks, then use this option. At each prompt the current
  129. stat is displayed. Either DEL the information and type in the correct
  130. information or press RETURN to retain the current stat.
  131.  
  132.  2.4 Re-calculate
  133.  
  134.     If for some reason you feel the division standings were not correctly
  135. calculated then use this option to re-calculate then.
  136.  
  137.  2.5 Print
  138.  
  139.     This option will print the current screen with the listing of all
  140. divisions and teams either in their alphabetical order or sorting according
  141. to their winning percentage, depending on which is on the current screen.
  142.  
  143.     That's NFL TOP TEN! When I was in high school I used to keep all this
  144. information on paper because there was no sports-oriented national
  145. newspaper like USA TODAY that kept all these stats. I also preferred to use
  146. my own rating system. Now that I have a C-128 my stats sheets have never
  147. looked better.
  148.  
  149.  
  150.  FENDER'S POSTMUMBLE: After a subscriber pointed out that NFL TOP TEN
  151. couldn't be used for the current NFL lineup because of an extra team and a
  152. team name change, I decided to modify the program myself, thinking it would
  153. be easy. It wasn't. The sort routine was written strictly for five teams
  154. per division and the American Central now has six. Then all the screen
  155. formatting had to be changed. But I think I have it all working fine for
  156. the current 31-team league.
  157.  
  158.  My changes aren't perfect. I've noticed that at times, when going back to
  159. the Main Menu, the 30th or 31st team names may be corrupted. I have no idea
  160. why, but you can just re-calculate and the problem will fix itself.
  161.  
  162.                 \\\\\ R - Run   RETURN - Menu \\\\\
  163.                                                                            
  164.